- currentStreamNumber
- A number which identify the stream number which this streamedData belongs to.
- state
- User state information.
- streamedData
- The actual data streamed from the service.
| Visual Basic (Declaration) | |
|---|---|
Protected MustOverride Sub UpdateUI( _ ByVal currentStreamNumber As Integer, _ ByVal state As TServiceState, _ ByVal streamedData As TStreamedData _ ) | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As ServiceStreamer(Of TStreamedData,TServiceState) Dim currentStreamNumber As Integer Dim state As TServiceState Dim streamedData As TStreamedData instance.UpdateUI(currentStreamNumber, state, streamedData) | |
| C# | |
|---|---|
protected abstract void UpdateUI( int currentStreamNumber, TServiceState state, TStreamedData streamedData ) | |
| C++/CLI | |
|---|---|
protected: abstract void UpdateUI( int currentStreamNumber, TServiceState^ state, TStreamedData^ streamedData ) | |
Parameters
- currentStreamNumber
- A number which identify the stream number which this streamedData belongs to.
- state
- User state information.
- streamedData
- The actual data streamed from the service.
Use this method to update the user interface with the information streamed from the web service.
Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family
Copy Code